home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / docsdemo / pov / lathdem1 < prev    next >
Text File  |  1997-01-21  |  293b  |  23 lines

  1. #include "colors.inc"
  2.  
  3. camera {  
  4.   angle 10
  5.   location <1, 9, -50>
  6.   look_at <0, 2, 0>        
  7. }
  8.  
  9. light_source {
  10.   <20, 20, -20> color White 
  11. }
  12.  
  13. lathe {
  14.   linear_spline 
  15.   6, 
  16.   <0,0>, <1,1>, <3,2>, <2,3>, <2,4>, <0,4>
  17.   pigment { Blue }
  18.   finish { 
  19.     ambient .3      
  20.     phong .75 
  21.   }
  22. }
  23.